The COVID-19 pandemic has led to over 23 million job losses in the United States in March and April of 2020. This increase in unemployment has differentially affected the population, with Black and Hispanic populations seeing higher levels of unemployment and slower rates of job recovery. This represents a historically unprecedented level of unemployment and while as of June, 2020 some areas have exhibited a slow recovery, the near term prospects for those who have lost jobs is uncertain at best.

While official statistics have examined joblessness from a national perspective, little attention has been paid to sub-national trends in unemployment. This analysis of the patterns of unemployment during COVID-19 in the state of Texas shows that significant variation exists in overall unemployment, and based on the major demographic subpopulations of the state.

The overall unemployment rate for the major race/ethnic groups in the state between January 2020 and July 2020 is shown in Figure 1. We see that differences existed early on in the year, with whites having approximately half the unemployment rate of either Blacks or Latinos. As the pandemic proceeded into March and April, all groups showed increases in unemployment, with white unemployment reaching 9.1% and Latino unemployment reaching 14%. Black unemployment did not peak until May, at 21.8%.

Since May, all subpopulations have shown a gradual decrease in unemployment as the state began to open up businesses. Although unemployment among Blacks decreased in May, in June and July the rate stagnated, and showed an additional increase in July. Among Latinos, May and June showed little change in overall unemployment, with a small decrease in July. Among whites, May and June saw decreases in unemployment, only to increase again in July.

The overall picture indicates that unemployment in the state has not returned to pre-COVID levels, and could be considered to be stagnant in the recovery.

Figure 2 further subdivides the Texas population by race/ethnicity and gender. Comparable patterns based on race/ethnicity are seen when males and females are considered separately, but among Latinos and whites, women faced higher levels of unemployment during April and May.

Perhaps the hardest hit group are Black women, who in January and February had unemployment rates almost identical to whites, but increased to over 23.4% in April. This group showed an initial recovery during May and June, but July showed an increase.

Latino women showed higher rates than men in April and May and a recovery in June and July.

Whites showed lower rates of unemployment, but both white men and women are showing a trend toward increasing unemployment through June and July.

Figure 3 presents the unemployment rate by level of completed education. There are significant differences in unemployment across the four educational levels and race/ethnic groups shown here. Among those with less than high school education, very high rates of unemployment are seen, especially for Blacks, which on average had almost a 40% unemployment rate in April, and continued to have over a 30% unemployment rate in July.

Among those with high school education, there are similar disparities based on race/ethnicity, with Blacks having almost double the unemployment rates of other groups. Whites and Latinos with high school education show similar patterns of unemployment, with little overall change since April.

Similar patterns are seen for those with some college or associates degrees. Unemployment among whites peaked in April, while for Blacks and Latinos, unemployment peaked in May, and all groups show graduate decreases since May.

Those with college education have fared the best through the pandemic, although, differences based on race/ethnicity are still present. In April, over 10% of Latinos and almost 10% of Blacks were unemployed, compared to 5.7% for whites. By July, some recovery had occurred, but not to pre-pandemic levels.

Figure 4 shows the estimates of unemployment by age within the state. While age is a significant factor related to unemployment risk during COVID, the youngest workers have been hit much harder than other group. Workers under age 24 experienced the highest levels of unemployment, with rates as high as 25% in May. In June and July, there was some sign of recovery with the unemployment rate decreasing again, but it still remains well above it’s pre-COVID level.

Other workers also experienced an approximate doubling of the unemployment rate in April and May, with little sign of recovery in the other ages.

Insufficient sample sizes are available to produce stable estimates for individual metropolitan areas within the state, but the CPS identifies the metropolitan status for its respondents as Central City, Outside Central city and Not Metropolitan. Figure 5 shows the estimates of unemployment for these three classifications. Central city areas have had the highest levels of unemployment in the state, even before COVID. In April, all three types of places showed effectively a tripling of the unemployment rate, with central cities having the higest rates, at nearly 15%. Central cities and suburban areas (Outside Central Cities) have shown slower recovery than non metro areas, which experienced a rapid recovery after April.

Texas Workforce Commission Uninsurance Claims

The Texas Workforce Commission has made available weekly numbers of unemployment insurance claims, by county since March, 2020. The county level estimates allow us to see if specific areas within the state are showing higher or lower unemployment levels. The data are downloadable from this site.

Using these data, along with county population estimates from the American Community Surey 2018 5 year summary file, per-capita rates of unemployment insurance claims are calculated. These estimates are then presented as a weekly map from March 7th to August 15th. These are shown in Figure 6.

click for high resolution image

The figure shows that prior to March 14, unemployment insurance (UI) claims were very low, then starting in the week of March 21st, the rats began to increase in and around the large metropolitan areas (Dallas-Ft. Worth, San Antonio, Austin, I-35 Corridor, Houston-Galveston). By the first week of April, most of the state, with the exception of the Panhandle, had experienced massive increases in UI filings. Following the Govenor’s announcement that on April, 28 the state would begin reopening the economy, we see a decrease in UI claims in most areas outside of the major metro areas. By the end of May, the majority of the state had much lower UI claims. The Gulf Coast remained high throughout July, but by the first week of August, the UI claim levels had reduced to almost pre-COVID levels.

Statistical Tests for Estimates

des<-survey::svydesign(ids=~1,
                       strata=~METFIPS,
                       weights = ~WTFINL,
                       data=cpsdat2[cpsdat2$month>as.Date('2019-12-01'),])

m1<-svyglm(emp_bin~factor(race_eth2)*factor(month)-1, des, family=binomial)
regTermTest(m1, test.terms = "factor(race_eth2)")

Wald test for factor(race_eth2) in svyglm(formula = emp_bin ~ factor(race_eth2) * factor(month) - 1, design = des, family = binomial) F = 412.9521 on 3 and 15323 df: p= < 2.22e-16

knitr::kable(broom::tidy(Anova(m1) ))
term df statistic p.value
factor(race_eth2) 3 1308.49961 0.0000000
factor(month) 5 328.97934 0.0000000
factor(race_eth2):factor(month) 10 11.92757 0.2899329
m2<-svyglm(emp_bin~race_eth2+sex+race_eth2*sex*factor(month), des, family=binomial)
regTermTest(m2, test.terms = "race_eth2:sex")

Wald test for race_eth2:sex in svyglm(formula = emp_bin ~ race_eth2 + sex + race_eth2 * sex * factor(month), design = des, family = binomial) F = 1.576137 on 2 and 15305 df: p= 0.20681

knitr::kable(broom::tidy(Anova(m2) ))
term df statistic p.value
race_eth2 2 78.637220 0.0000000
sex 1 12.482503 0.0004108
factor(month) 5 328.545951 0.0000000
race_eth2:sex 2 7.738305 0.0208761
race_eth2:factor(month) 10 12.117060 0.2772985
sex:factor(month) 5 4.631657 0.4624637
race_eth2:sex:factor(month) 10 14.318354 0.1589594
m3<-svyglm(emp_bin~Age_Group*factor(month), des, family=binomial)
regTermTest(m3, test.terms = "Age_Group")

Wald test for Age_Group in svyglm(formula = emp_bin ~ Age_Group * factor(month), design = des, family = binomial) F = 3.420179 on 5 and 15305 df: p= 0.0043267

knitr::kable(broom::tidy(Anova(m3) ))
term df statistic p.value
Age_Group 5 129.94215 0.0000000
factor(month) 5 332.32543 0.0000000
Age_Group:factor(month) 25 26.01534 0.4067805
m4<-svyglm(emp_bin~metro*factor(month),des, family=binomial)
regTermTest(m4, test.terms = "metro" )

Wald test for metro in svyglm(formula = emp_bin ~ metro * factor(month), design = des, family = binomial) F = 2.735948 on 3 and 15317 df: p= 0.041942

knitr::kable(broom::tidy(Anova(m4) ))
term df statistic p.value
metro 3 31.774402 0.0000006
factor(month) 5 320.216048 0.0000000
metro:factor(month) 15 9.620591 0.8429031

Methodology

Monthly Current Population Survey microdata are from the Integrated Public Microdata Series, IPUMS–CPS. Data are subset to contain only those respondents in the civilian labor force over age 16. All estimates are weighted by the WTFINL variable to be representative of the U.S. labor force. All estimates presented are population-weighted means, not all inter-group comparisons have statistical significance. A minimum sample size of 30 respondents for each population subgroup, per month, was used to avoid statistically unstable estimates. The ethnicity variable created here is a combination of both the self-reported race and Hispanic ethnicity of the respondent. Latino/a ethnicity includes all respondents who reported Hispanic ethnicity, regardless of race, Whites include non-Hispanic white respondents and Blacks include non-Hispanic Black respondents.

TWC data were obtained from the [Texas Workforce Commission website] (https://www.twc.texas.gov/files/agency/weekly-claims-by-county-twc.xlsx), and merged with the American Community Survey population estimates from the 2018 5 year summary file for Texas counties.

All data and code related to this brief are available at Dr. Corey Sparks’s Github repository github.com/coreysparks/TX_demography.

References

Fox, Weisberg, and Price (2020) Wickham, François, et al. (2020) Wickham (2020) Wickham, Chang, et al. (2020) Greg Freedman Ellis and Derek Burk (2020) Sievert et al. (2020) Lumley (2020)

Fox, John, Sanford Weisberg, and Brad Price. 2020. Car: Companion to Applied Regression. https://CRAN.R-project.org/package=car.

Greg Freedman Ellis, and Derek Burk. 2020. Ipumsr: Read ’Ipums’ Extract Files. https://CRAN.R-project.org/package=ipumsr.

Lumley, Thomas. 2020. Survey: Analysis of Complex Survey Samples. https://CRAN.R-project.org/package=survey.

Sievert, Carson, Chris Parmer, Toby Hocking, Scott Chamberlain, Karthik Ram, Marianne Corvellec, and Pedro Despouy. 2020. Plotly: Create Interactive Web Graphics via ’Plotly.js’. https://CRAN.R-project.org/package=plotly.

Wickham, Hadley. 2020. Forcats: Tools for Working with Categorical Variables (Factors). https://CRAN.R-project.org/package=forcats.

Wickham, Hadley, Winston Chang, Lionel Henry, Thomas Lin Pedersen, Kohske Takahashi, Claus Wilke, Kara Woo, Hiroaki Yutani, and Dewey Dunnington. 2020. Ggplot2: Create Elegant Data Visualisations Using the Grammar of Graphics. https://CRAN.R-project.org/package=ggplot2.

Wickham, Hadley, Romain François, Lionel Henry, and Kirill Müller. 2020. Dplyr: A Grammar of Data Manipulation. https://CRAN.R-project.org/package=dplyr.